go/ast.TypeSpec.Assign (field)

10 uses

	go/ast (current package)
		ast.go#L926: 		Assign     token.Pos     // position of '=', if any

	go/parser
		parser.go#L2610: 		spec.Assign = p.pos
		parser.go#L2680: 			spec.Assign = p.pos

	go/printer
		nodes.go#L1724: 		if s.Assign.IsValid() {

	go/types
		decl.go#L260: 					alias = d.tdecl.Assign.IsValid() // package-level object
		decl.go#L574: 	if tdecl.Assign.IsValid() {
		decl.go#L580: 		if !versionErr && !check.verifyVersionf(atPos(tdecl.Assign), go1_9, "type alias") {
		decl.go#L768: 	assert(!check.objMap[obj].tdecl.Assign.IsValid()) // don't use TypeName.IsAlias (requires fully set up object)
		resolver.go#L579: 		if !tdecl.Assign.IsValid() {
		resolver.go#L673: 				if check.objMap[tname].tdecl.Assign.IsValid() {